home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / pcboard / ssspcb20.zip / NUMBER11.ZIP / NUMBERS.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-04-27  |  1KB  |  116 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.2O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     Integer  INTEGER002
  21.  
  22. ;------------------------------------------------------------------------------
  23.  
  24.     INTEGER002 = FileInf("C:\PCB\MAIN\USERS", 4) / 400
  25.     If (INTEGER002 > 0) Then
  26.         Color 0
  27.         Cls
  28.         Color 15
  29.         StartDisp 1
  30.         Gosub LABEL001
  31.         PrintLn 
  32.         PrintLn "@X0A", INTEGER002, " User Records Scanned for VERIFIED.DAT"
  33.         PrintLn 
  34.         Wait
  35.         StartDisp 2
  36.     Else
  37.         PrintLn "@X0CUsers File Indicates 0 Records!"
  38.         Wait
  39.     Endif
  40.     End
  41.     :LABEL001
  42.     FCreate 1, PPEPath() + "VERIFIED.DAT", 1, 3
  43.     For INTEGER001 = 1 To INTEGER002
  44.         GetAltUser INTEGER001
  45.         FPutLn 1, U_HVPhone, ":", U_Name()
  46.         PrintLn U_HVPhone, ":", U_Name()
  47.         FPutLn 1, U_BDPhone, ":", U_Name()
  48.         PrintLn U_BDPhone, ":", U_Name()
  49.     Next
  50.     FClose 1
  51.     Log "-=≡[ VERIFIED.DAT Updated ]≡=-", 0
  52.     Return
  53.  
  54. ;------------------------------------------------------------------------------
  55. ;
  56. ; Usage report (before postprocessing)
  57. ;
  58. ; ■ Statements used :
  59. ;
  60. ;    1       End
  61. ;    1       Cls
  62. ;    2       Wait
  63. ;    2       Color 
  64. ;    4       Goto 
  65. ;    3       Let 
  66. ;    6       PrintLn 
  67. ;    2       If 
  68. ;    1       FCreate 
  69. ;    1       FClose 
  70. ;    2       FPutLn 
  71. ;    2       StartDisp 
  72. ;    1       Log 
  73. ;    1       Gosub 
  74. ;    1       Return
  75. ;    1       GetAltUser 
  76. ;
  77. ;
  78. ; ■ Functions used :
  79. ;
  80. ;    1       /
  81. ;    2       +
  82. ;    1       <
  83. ;    1       <=
  84. ;    1       >
  85. ;    2       >=
  86. ;    2       !
  87. ;    2       &&
  88. ;    1       ||
  89. ;    4       U_Name()
  90. ;    1       PPEPath()
  91. ;    1       FileInf()
  92. ;
  93. ;------------------------------------------------------------------------------
  94. ;
  95. ; Analysis flags : R
  96. ;
  97. ; R - Read user ■ 5
  98. ;     User records are read, this may signify that someone wants to get
  99. ;     various informations about a user (for example his password), but
  100. ;     this may also be normal for a program accessing user records (for
  101. ;     example a User Editor)
  102. ;     ■ Search for : GETALTUSER
  103. ;
  104. ;------------------------------------------------------------------------------
  105. ;
  106. ; Postprocessing report
  107. ;
  108. ;    1       For/Next
  109. ;    0       While/EndWhile
  110. ;    1       If/Then or If/Then/Else
  111. ;    0       Select Case
  112. ;
  113. ;------------------------------------------------------------------------------
  114. ;                 AEGiS Corp - Break the routines, code against the machines!
  115. ;------------------------------------------------------------------------------
  116.